home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mandrake_MDKSA-2004-058.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  83 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # This plugin text was extracted from Mandrake Linux Security Advisory MDKSA-2004:058
  5. #
  6.  
  7.  
  8. if ( ! defined_func("bn_random") ) exit(0);
  9. if(description)
  10. {
  11.  script_id(14157);
  12.  script_version ("$Revision: 1.2 $");
  13.  script_cve_id("CAN-2004-0414", "CAN-2004-0416", "CAN-2004-0417", "CAN-2004-0418");
  14.  
  15.  name["english"] = "MDKSA-2004:058: cvs";
  16.  
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. The remote host is missing the patch for the advisory MDKSA-2004:058 (cvs).
  21.  
  22.  
  23. Another vulnerability was discovered related to 'Entry' lines in cvs, by the
  24. development team (CAN-2004-0414).
  25. As well, Stefan Esser and Sebastian Krahmer performed an audit on the cvs source
  26. code and discovered a number of other problems, including:
  27. A double-free condition in the server code is exploitable (CAN-2004-0416).
  28. By sending a large number of arguments to the CVS server, it is possible to
  29. cause it to allocate a huge amount of memory which does not fit into the address
  30. space, causing an error (CAN-2004-0417).
  31. It was found that the serve_notify() function would write data out of bounds
  32. (CAN-2004-0418).
  33. The provided packages update cvs to 1.11.16 and include patches to correct all
  34. of these problems.
  35.  
  36.  
  37. Solution : http://www.mandrakesoft.com/security/advisories?name=MDKSA-2004:058
  38. Risk factor : High";
  39.  
  40.  
  41.  
  42.  script_description(english:desc["english"]);
  43.  
  44.  summary["english"] = "Check for the version of the cvs package";
  45.  script_summary(english:summary["english"]);
  46.  
  47.  script_category(ACT_GATHER_INFO);
  48.  
  49.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  50.  family["english"] = "Mandrake Local Security Checks";
  51.  script_family(english:family["english"]);
  52.  
  53.  script_dependencies("ssh_get_info.nasl");
  54.  script_require_keys("Host/Mandrake/rpm-list");
  55.  exit(0);
  56. }
  57.  
  58. include("rpm.inc");
  59. if ( rpm_check( reference:"cvs-1.11.16-1.1.100mdk", release:"MDK10.0", yank:"mdk") )
  60. {
  61.  security_hole(0);
  62.  exit(0);
  63. }
  64. if ( rpm_check( reference:"cvs-1.11.16-1.1.91mdk", release:"MDK9.1", yank:"mdk") )
  65. {
  66.  security_hole(0);
  67.  exit(0);
  68. }
  69. if ( rpm_check( reference:"cvs-1.11.16-1.1.92mdk", release:"MDK9.2", yank:"mdk") )
  70. {
  71.  security_hole(0);
  72.  exit(0);
  73. }
  74. if (rpm_exists(rpm:"cvs-", release:"MDK10.0")
  75.  || rpm_exists(rpm:"cvs-", release:"MDK9.1")
  76.  || rpm_exists(rpm:"cvs-", release:"MDK9.2") )
  77. {
  78.  set_kb_item(name:"CAN-2004-0414", value:TRUE);
  79.  set_kb_item(name:"CAN-2004-0416", value:TRUE);
  80.  set_kb_item(name:"CAN-2004-0417", value:TRUE);
  81.  set_kb_item(name:"CAN-2004-0418", value:TRUE);
  82. }
  83.